/**************************MENU*****************/
#nav {
	float:left;
	width:1000px;
}
#nav ul {
	list-style:none;
	margin:0;
	padding:0;
}
#nav > ul > li {
	float:left;
	display:inline;
	position:relative;
}
#nav > ul > li > a {
	color:#fff;
	line-height:38px;
	display:block;
	padding:0 26px;
	text-decoration:none;
	border-right:1px solid #090909;
	border-left:1px solid #424242;
}
#nav ul li a:hover {
	background:#1f1f1f;
	text-decoration:none;
}
#nav ul li.current > a {
	background:#1f1f1f;
	text-decoration:none;
}
#nav ul li.home_btn {
	background:none;
	border-left:1px solid #1f1f1f;
}
#nav ul li.home_btn a {
	width:24px;
	height:38px;
	display:block;
	padding:0px 18px;
	background: url(../images/home.png) no-repeat 18px 10px;
}
#nav ul li.current.home_btn a, #nav ul li.home_btn a:hover {
	background: url(../images/home.png) no-repeat 18px 10px #1f1f1f;
}
#nav ul ul {
	padding:0;
	position: absolute;
	left: -5000px;
	min-width: 100%;
	z-index: 100;
	opacity: 0;
	overflow:hidden;
	background:#2c2c2c;
}
#nav ul li:hover ul {
	left: 0;
	opacity: 1;
}
#nav ul ul li:hover ul {
	left: 100%;
	opacity: 1;
}
#nav ul ul li {
	white-space: nowrap;
	padding: 0;
	margin: 0 0px;
	border-top:1px solid #5c5c5c;
}
#nav ul ul a {
	font-size: 14px;
	color: #fff;
	padding: 0 15px;
	text-decoration: none;
	line-height: 28px;
	display: block;
	
}
#nav ul ul a:hover {
	color:#333;
	border-radius:0;
	text-shadow: none;
	background:#f39d14;
	border-bottom:none;
}
